home *** CD-ROM | disk | FTP | other *** search
/ Champak 140 / (Vol 140) Sep 19 2011.iso / Games / world-wars.swf / scripts / __Packages / classes / ww_interface / Waiter.as < prev   
Text File  |  2011-09-19  |  690b  |  33 lines

  1. class classes.ww_interface.Waiter extends MovieClip
  2. {
  3.    var countdown = 2;
  4.    var cdw = 0;
  5.    function Waiter()
  6.    {
  7.       super();
  8.       this._visible = false;
  9.       this.status = "ready_off";
  10.    }
  11.    function show()
  12.    {
  13.       this.status = "progress";
  14.       this._visible = true;
  15.       this.cdw = 0;
  16.       this.onEnterFrame = mx.utils.Delegate.create(this,this.makeBig);
  17.    }
  18.    function hide()
  19.    {
  20.       this._visible = false;
  21.       this.status = "ready_off";
  22.    }
  23.    function makeBig()
  24.    {
  25.       this.cdw = this.cdw + 1;
  26.       if(this.cdw > this.countdown)
  27.       {
  28.          this.status = "ready_on";
  29.          delete this.onEnterFrame;
  30.       }
  31.    }
  32. }
  33.